home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QuickTime for the Web (2nd Edition)
/
QuickTime for the Web (2nd Edition).iso
/
pc
/
AppleScript
/
QUICKTIME 5.0.2 SCRIPTS
/
Example Files
/
Track Syntax Examples
/
add image track
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-06-04
|
385 b
|
13 lines
tell application "QuickTime Player"
launch
activate
stop every movie
try
set the chosen_file to choose file of type {"JPEG", "GIFf", "PICT", "TIFF"} with prompt "Pick an image file:"
make new movie
set this_track to make new track at movie 1 with data chosen_file
on error error_message
beep
display dialog error_message buttons {"OK"} default button 1
end try
end tell